home *** CD-ROM | disk | FTP | other *** search
- unit Ttt0;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs;
-
- type
- TTTTControl0 = class(TWinControl)
- private
- { Private declarations }
- protected
- { Protected declarations }
- public
- { Public declarations }
- published
- { Published declarations }
- end;
-
- procedure Register;
-
- implementation
-
- procedure Register;
- begin
- RegisterComponents('Dr.Bob', [TTTTControl0]);
- end;
-
- end.
-